home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / AlexNeXTSTEPSource / Source / Chapter3_OOD / ShapeArea / AbstractShape.h next >
Text File  |  1995-06-12  |  86b  |  10 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface AbstractShape:Object
  4. {
  5. }
  6.  
  7. -(float)calcArea;
  8.  
  9. @end
  10.